home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / GRAPHICS / HOLIDY11.ZIP / CATALOG.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-10-28  |  1.7 KB  |  32 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────────────────────────────────────────┐
  4. echo │ This utility will print a catalog of all the Holiday Clip Art in this  │
  5. echo │ collection, plus the additional clip art you get when you register.    │
  6. echo │ You *must* have an HP LaserJet or compatible printer to run this batch │
  7. echo │ file correctly. The catalog is one page in length.                     │
  8. echo │                                                                        │
  9. echo │ This batch file assumes your laser printer is connected to LPT1. If it │
  10. echo │ is *not* attached to LPT1, press Ctrl-C now to abort this batch file   │
  11. echo │ and then rerun the batch file, passing it the printer port name:       │
  12. echo │                                                                        │
  13. echo │ catalog LPT2:   OR   catalog COM1:                                     │
  14. echo │                                                                        │
  15. echo │ Make sure your printer is on and ready to run. Then press the enter    │
  16. echo │ key to print a copy of the catalog.                                    │
  17. echo │                                                                        │
  18. echo │ If you do *not* want to print this catalog, or you do not have an HP   │
  19. echo │ LaserJet or compatible printer, press the Ctrl-C key now to abort this │
  20. echo │ batch file.                                                            │
  21. echo └────────────────────────────────────────────────────────────────────────┘
  22. pause
  23. echo Printing a one page catalog, this will take a moment...
  24. if "%1"=="" goto DOLPT1
  25. copy /b holidays.lj2 %1
  26. goto done
  27. :DOLPT1
  28. copy /b holidays.lj2 lpt1:
  29. :DONE
  30. del holidays.lj2
  31. dir *.pcx /w /o
  32.